home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / bm_cpio.gz / unixbm.cpio / makefile < prev    next >
Makefile  |  1994-07-11  |  704b  |  41 lines

  1. #
  2. #    Makefile for Bdale's Mailer
  3. #    
  4. #    for more info see bm.doc and smtp.doc in the documentation package
  5. #    if you change the makefile, do a make clean before you do a make.
  6. #
  7.  
  8. CFLAGS= -O -DUNIX
  9.  
  10. OBJS=    main.o send.o unix.o bmutil.o version.o header.o files.o getopt.o \
  11.     ndir.o wildmat.o
  12.  
  13. SRC=    main.c send.c unix.c bmutil.c version.c header.c files.c getopt.c \
  14.     ndir.c wildmat.c
  15.  
  16. #all:    bm uuencode uudecode 
  17. all:    bm 
  18.     
  19. bm:     $(OBJS)
  20.     $(CC) $(CFLAGS) $(OBJS) -o bm $(LDFLAGS)
  21.  
  22. clean:
  23.     -rm *.o
  24.  
  25. clobber: clean
  26.     -rm bm
  27.  
  28. lint:
  29.     lint $(CFLAGS) $(SRC)
  30.  
  31. #
  32. # dependencies - please keep up to date!
  33. #
  34.  
  35. bmutil.o:    header.h bm.h
  36. header.o:    header.h bm.h
  37. main.o:        bm.h
  38. ndir.o:        ndir.h
  39. send.o:        bm.h
  40. unix.o:        bm.h ndir.h
  41.